BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
name = "MS Sans Serif"
charset = 0
weight = 400
size = 8.25
underline = 0 'False
italic = 0 'False
strikethrough = 0 'False
EndProperty
AlignSet = -1 'True
Style = 1
SimpleText = ""
i1 = "Browsing kinda.frx":091E
End
Begin ComctlLib.ImageList imgFiles
Left = 9600
Top = 4680
_Version = 65536
_ExtentX = 1005
_ExtentY = 1005
_StockProps = 1
BackColor = -2147483643
MaskColor = 12632256
End
Begin ComctlLib.ListView lvwFiles
Height = 3255
Left = 3480
TabIndex = 5
Top = 1200
Width = 8655
_Version = 65536
_ExtentX = 15266
_ExtentY = 5741
_StockProps = 205
ForeColor = -2147483640
BackColor = -2147483643
Appearance = 1
Arrange = 1
HideSelection = 0 'False
Icons = ""
LabelEdit = 1
MultiSelect = -1 'True
SmallIcons = ""
View = 1
End
End
Attribute VB_Name = "fCrypt"
Attribute VB_Creatable = False
Attribute VB_Exposed = False
Option Explicit
Private Declare Function cFileCrypt Lib "t2win-32.dll" (ByVal File1 As String, ByVal File2 As String, ByVal Password As String) As Long
Private Declare Function ExtractAssociatedIcon Lib "shell32.dll" Alias "ExtractAssociatedIconA" (ByVal hInst As Long, ByVal lpIconPath As String, lpiIcon As Long) As Long
Private Declare Function ExtractIcon Lib "shell32.dll" Alias "ExtractIconA" (ByVal hInst As Long, ByVal lpszExeFileName As String, ByVal nIconIndex As Long) As Long
Private Declare Function ExtractIconEx Lib "shell32.dll" Alias "ExtractIconExA" (ByVal lpszFile As String, ByVal nIconIndex As Long, phiconLarge As Long, phiconSmall As Long, ByVal nIcons As Long) As Long
Private Declare Function DrawIcon Lib "user32" (ByVal hdc As Long, ByVal X As Long, ByVal Y As Long, ByVal hIcon As Long) As Long
Private Declare Function DrawIconEx Lib "user32" (ByVal hdc As Long, ByVal xLeft As Long, ByVal yTop As Long, ByVal hIcon As Long, ByVal cxWidth As Long, ByVal cyWidth As Long, ByVal istepIfAniCur As Long, ByVal hbrFlickerFreeDraw As Long, ByVal diFlags As Long) As Boolean
Private Const fSizeW = 45 'width of sizing picture box
Private fLastX As Single 'used for drawing sizing line
Private icoWidth As Integer
Private fHog As Boolean
Private Function Crypt(FName As String, PW As String) As Boolean